GtkScale: Properly chain up in GtkBuildableIface->custom_finished()
authorTristan Van Berkom <tristanvb@openismus.com>
Mon, 8 Apr 2013 12:04:50 +0000 (21:04 +0900)
committerTristan Van Berkom <tristanvb@openismus.com>
Mon, 8 Apr 2013 12:18:47 +0000 (21:18 +0900)
This was causing <style> markup to be ignored when specified
on GtkScale types.

gtk/gtkscale.c

index 1af2f538b09dd56a047bb6f1738d476326087c67..4f739d807992796a0581405466facdd3ecc90ccb 100644 (file)
@@ -1903,4 +1903,10 @@ gtk_scale_buildable_custom_finished (GtkBuildable *buildable,
       g_slist_free (marks_data->marks);
       g_slice_free (MarksSubparserData, marks_data);
     }
+  else
+    {
+      parent_buildable_iface->custom_finished (buildable, builder, child,
+                                              tagname, user_data);
+    }
+
 }